home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / lcms / icc34.h next >
C/C++ Source or Header  |  2005-10-18  |  40KB  |  1,038 lines

  1. /* Header file guard bands */
  2. #ifndef ICC_H
  3. #define ICC_H
  4.  
  5. /***************************************************************** 
  6.  Copyright (c) 1994-1996 SunSoft, Inc.
  7.  
  8.                     Rights Reserved
  9.  
  10. Permission is hereby granted, free of charge, to any person 
  11. obtaining a copy of this software and associated documentation
  12. files (the "Software"), to deal in the Software without restrict- 
  13. ion, including without limitation the rights to use, copy, modify, 
  14. merge, publish distribute, sublicense, and/or sell copies of the 
  15. Software, and to permit persons to whom the Software is furnished 
  16. to do so, subject to the following conditions: 
  17.  
  18. The above copyright notice and this permission notice shall be 
  19. included in all copies or substantial portions of the Software. 
  20.  
  21. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
  22. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
  23. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-
  24. INFRINGEMENT.  IN NO EVENT SHALL SUNSOFT, INC. OR ITS PARENT 
  25. COMPANY BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
  26. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
  27. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 
  28. OTHER DEALINGS IN THE SOFTWARE. 
  29.  
  30. Except as contained in this notice, the name of SunSoft, Inc. 
  31. shall not be used in advertising or otherwise to promote the 
  32. sale, use or other dealings in this Software without written 
  33. authorization from SunSoft Inc. 
  34. ******************************************************************/
  35.  
  36. /*
  37.  * This version of the header file corresponds to the profile
  38.  * specification version 3.4.
  39.  *
  40.  * All header file entries are pre-fixed with "ic" to help 
  41.  * avoid name space collisions. Signatures are pre-fixed with
  42.  * icSig.
  43.  *
  44.  * The structures defined in this header file were created to
  45.  * represent a description of an ICC profile on disk. Rather
  46.  * than use pointers a technique is used where a single byte array 
  47.  * was placed at the end of each structure. This allows us in "C"
  48.  * to extend the structure by allocating more data than is needed
  49.  * to account for variable length structures.
  50.  *
  51.  * This also ensures that data following is allocated
  52.  * contiguously and makes it easier to write and read data from
  53.  * the file. 
  54.  *
  55.  * For example to allocate space for a 256 count length UCR
  56.  * and BG array, and fill the allocated data.  Note strlen + 1
  57.  * to remember NULL terminator.
  58.  *
  59.         icUcrBgCurve    *ucrCurve, *bgCurve;
  60.         int             ucr_nbytes, bg_nbytes, string_bytes;
  61.         icUcrBg         *ucrBgWrite;
  62.         char            ucr_string[100], *ucr_char;
  63.  
  64.         strcpy(ucr_string, "Example ucrBG curves");
  65.         ucr_nbytes = sizeof(icUInt32Number) + 
  66.                  (UCR_CURVE_SIZE * sizeof(icUInt16Number));
  67.         bg_nbytes = sizeof(icUInt32Number) + 
  68.                  (BG_CURVE_SIZE * sizeof(icUInt16Number));
  69.         string_bytes = strlen(ucr_string) + 1;
  70.  
  71.         ucrBgWrite = (icUcrBg *)malloc(
  72.                                 (ucr_nbytes + bg_nbytes + string_bytes));
  73.  
  74.         ucrCurve = (icUcrBgCurve *)ucrBgWrite->data;
  75.         ucrCurve->count = UCR_CURVE_SIZE;
  76.         for (i=0; i<ucrCurve->count; i++)
  77.                 ucrCurve->curve[i] = (icUInt16Number)i;
  78.  
  79.         bgCurve = (icUcrBgCurve *)((char *)ucrCurve + ucr_nbytes);
  80.         bgCurve->count = BG_CURVE_SIZE;
  81.         for (i=0; i<bgCurve->count; i++)
  82.                 bgCurve->curve[i] = 255 - (icUInt16Number)i;
  83.  
  84.         ucr_char = (char *)((char *)bgCurve + bg_nbytes);
  85.         memcpy(ucr_char, ucr_string, string_bytes);
  86.  *
  87.  */
  88.  
  89. /*
  90.  * Many of the structures contain variable length arrays. This
  91.  * is represented by the use of the convention.
  92.  *
  93.  *      type    data[icAny];
  94.  */
  95.  
  96. /*------------------------------------------------------------------------*/
  97. /*
  98.  * Defines used in the specification
  99.  */
  100. #define icMagicNumber                   0x61637370L     /* 'acsp' */
  101. #define icVersionNumber                 0x02100000L     /* 2.1.0, BCD */
  102.  
  103. /* Screening Encodings */
  104. #define icPrtrDefaultScreensFalse       0x00000000L     /* Bit pos 0 */
  105. #define icPrtrDefaultScreensTrue        0x00000001L     /* Bit pos 0 */
  106. #define icLinesPerInch                  0x00000002L     /* Bit pos 1 */
  107. #define icLinesPerCm                    0x00000000L     /* Bit pos 1 */
  108.  
  109. /* 
  110.  * Device attributes, currently defined values correspond
  111.  * to the low 4 bytes of the 8 byte attribute quantity, see
  112.  * the header for their location.
  113.  */
  114. #define icReflective                    0x00000000L     /* Bit pos 0 */
  115. #define icTransparency                  0x00000001L     /* Bit pos 0 */
  116. #define icGlossy                        0x00000000L     /* Bit pos 1 */
  117. #define icMatte                         0x00000002L     /* Bit pos 1 */
  118.  
  119. /*
  120.  * Profile header flags, the low 16 bits are reserved for consortium
  121.  * use.
  122.  */
  123. #define icEmbeddedProfileFalse          0x00000000L     /* Bit pos 0 */
  124. #define icEmbeddedProfileTrue           0x00000001L     /* Bit pos 0 */
  125. #define icUseAnywhere                   0x00000000L     /* Bit pos 1 */
  126. #define icUseWithEmbeddedDataOnly       0x00000002L     /* Bit pos 1 */
  127.  
  128. /* Ascii or Binary data */
  129. #define icAsciiData                     0x00000000L 
  130. #define icBinaryData                    0x00000001L
  131.  
  132. /* 
  133.  * Define used to indicate that this is a variable length array
  134.  */
  135. #define icAny                           1
  136.  
  137.  
  138. /*------------------------------------------------------------------------*/
  139. /*
  140.  * Use this area to translate platform definitions of long
  141.  * etc into icXXX form. The rest of the header uses the icXXX
  142.  * typedefs. Signatures are 4 byte quantities.
  143.  *
  144.  */
  145.  
  146.  
  147. #ifdef PACKAGE_NAME
  148. /*
  149.   June 9, 2003, Adapted for use with configure by Bob Friesenhahn
  150.   Added the stupid check for autoconf by Marti Maria 
  151. */
  152. typedef int    icSignature;
  153.  
  154. typedef unsigned char    icUInt8Number;
  155. typedef unsigned short    icUInt16Number;
  156. typedef unsigned int    icUInt32Number;
  157. typedef unsigned int    icUInt64Number[2];
  158.  
  159. typedef char    icInt8Number;
  160. typedef short    icInt16Number;
  161. typedef int    icInt32Number;
  162. typedef int    icInt64Number[2];
  163.  
  164. typedef icInt32Number    icS15Fixed16Number;
  165. typedef icUInt32Number    icU16Fixed16Number;
  166. #else
  167.  
  168. /* 
  169.  *Apr-17-2002: Modified by Marti Maria in order to provide wider portability.
  170.  */
  171.  
  172. #if defined (__digital__) && defined (__unix__)
  173.  
  174. /* Tru64 */
  175.  
  176. #include <inttypes.h>
  177.  
  178. typedef int32_t       icSignature; 
  179.  
  180. typedef uint8_t   icUInt8Number;
  181. typedef uint16_t  icUInt16Number;
  182. typedef uint32_t  icUInt32Number;
  183. typedef uint32_t  icUInt64Number[2];
  184.  
  185. typedef int8_t     icInt8Number;
  186. typedef int16_t    icInt16Number;
  187. typedef int32_t    icInt32Number;
  188. typedef int32_t    icInt64Number[2];
  189.  
  190. typedef icInt32Number    icS15Fixed16Number;
  191. typedef icUInt32Number   icU16Fixed16Number;
  192.  
  193. #else
  194. #ifdef __sgi
  195. #include "sgidefs.h"
  196.  
  197. typedef __int32_t       icSignature; 
  198.  
  199. /*
  200.  * Number definitions
  201.  */
  202.  
  203. /* Unsigned integer numbers */
  204. typedef unsigned char   icUInt8Number;
  205. typedef unsigned short  icUInt16Number;
  206. typedef __uint32_t      icUInt32Number;
  207. typedef __uint32_t      icUInt64Number[2];
  208.  
  209. /* Signed numbers */
  210. typedef char            icInt8Number;
  211. typedef short           icInt16Number;
  212. typedef __int32_t       icInt32Number;
  213. typedef __int32_t       icInt64Number[2];
  214.  
  215. /* Fixed numbers */
  216. typedef __int32_t       icS15Fixed16Number;
  217. typedef __uint32_t      icU16Fixed16Number;
  218.  
  219. #else   
  220. #if defined(__GNUC__) || defined(__unix__)
  221.  
  222. #include <sys/types.h>
  223.  
  224. typedef int32_t       icSignature; 
  225.  
  226. #ifdef __sun
  227.  
  228. typedef uint8_t   icUInt8Number;
  229. typedef uint16_t  icUInt16Number;
  230. typedef uint32_t  icUInt32Number;
  231. typedef uint32_t  icUInt64Number[2];
  232.  
  233. #else
  234.  
  235. /* Unsigned integer numbers */
  236. typedef u_int8_t   icUInt8Number;
  237. typedef u_int16_t  icUInt16Number;
  238. typedef u_int32_t  icUInt32Number;
  239. typedef u_int32_t  icUInt64Number[2];
  240.  
  241. #endif
  242.  
  243.  
  244. /* Signed numbers */
  245. typedef int8_t     icInt8Number;
  246. typedef int16_t    icInt16Number;
  247. typedef int32_t    icInt32Number;
  248. typedef int32_t    icInt64Number[2];
  249.  
  250. /* Fixed numbers */
  251. typedef icInt32Number    icS15Fixed16Number;
  252. typedef icUInt32Number   icU16Fixed16Number;
  253.  
  254. #else /* default definitions */
  255.  
  256. typedef long            icSignature;
  257.  
  258. /*
  259.  * Number definitions
  260.  */
  261.  
  262. /* Unsigned integer numbers */
  263. typedef unsigned char   icUInt8Number;
  264. typedef unsigned short  icUInt16Number;
  265. typedef unsigned long   icUInt32Number;
  266. typedef unsigned long   icUInt64Number[2];
  267.  
  268. /* Signed numbers */
  269. typedef char            icInt8Number;
  270. typedef short           icInt16Number;
  271. typedef long            icInt32Number;
  272. typedef long            icInt64Number[2];
  273.  
  274. /* Fixed numbers */
  275. typedef long            icS15Fixed16Number;
  276. typedef unsigned long   icU16Fixed16Number;
  277. #endif  /* default defs */
  278. #endif
  279. #endif
  280. #endif
  281.  
  282. /*------------------------------------------------------------------------*/
  283. /* public tags and sizes */
  284. typedef enum {
  285.     icSigAToB0Tag                       = 0x41324230L,  /* 'A2B0' */ 
  286.     icSigAToB1Tag                       = 0x41324231L,  /* 'A2B1' */
  287.     icSigAToB2Tag                       = 0x41324232L,  /* 'A2B2' */ 
  288.     icSigBlueColorantTag                = 0x6258595AL,  /* 'bXYZ' */
  289.     icSigBlueTRCTag                     = 0x62545243L,  /* 'bTRC' */
  290.     icSigBToA0Tag                       = 0x42324130L,  /* 'B2A0' */
  291.     icSigBToA1Tag                       = 0x42324131L,  /* 'B2A1' */
  292.     icSigBToA2Tag                       = 0x42324132L,  /* 'B2A2' */
  293.     icSigCalibrationDateTimeTag         = 0x63616C74L,  /* 'calt' */
  294.     icSigCharTargetTag                  = 0x74617267L,  /* 'targ' */ 
  295.     icSigCopyrightTag                   = 0x63707274L,  /* 'cprt' */
  296.     icSigCrdInfoTag                     = 0x63726469L,  /* 'crdi' */
  297.     icSigDeviceMfgDescTag               = 0x646D6E64L,  /* 'dmnd' */
  298.     icSigDeviceModelDescTag             = 0x646D6464L,  /* 'dmdd' */
  299.     icSigGamutTag                       = 0x67616D74L,  /* 'gamt ' */
  300.     icSigGrayTRCTag                     = 0x6b545243L,  /* 'kTRC' */
  301.     icSigGreenColorantTag               = 0x6758595AL,  /* 'gXYZ' */
  302.     icSigGreenTRCTag                    = 0x67545243L,  /* 'gTRC' */
  303.     icSigLuminanceTag                   = 0x6C756d69L,  /* 'lumi' */
  304.     icSigMeasurementTag                 = 0x6D656173L,  /* 'meas' */
  305.     icSigMediaBlackPointTag             = 0x626B7074L,  /* 'bkpt' */
  306.     icSigMediaWhitePointTag             = 0x77747074L,  /* 'wtpt' */
  307.     icSigNamedColorTag                  = 0x6E636f6CL,  /* 'ncol' 
  308.                                                          * OBSOLETE, use ncl2 */
  309.     icSigNamedColor2Tag                 = 0x6E636C32L,  /* 'ncl2' */
  310.     icSigPreview0Tag                    = 0x70726530L,  /* 'pre0' */
  311.     icSigPreview1Tag                    = 0x70726531L,  /* 'pre1' */
  312.     icSigPreview2Tag                    = 0x70726532L,  /* 'pre2' */
  313.     icSigProfileDescriptionTag          = 0x64657363L,  /* 'desc' */
  314.     icSigProfileSequenceDescTag         = 0x70736571L,  /* 'pseq' */
  315.     icSigPs2CRD0Tag                     = 0x70736430L,  /* 'psd0' */
  316.     icSigPs2CRD1Tag                     = 0x70736431L,  /* 'psd1' */
  317.     icSigPs2CRD2Tag                     = 0x70736432L,  /* 'psd2' */
  318.     icSigPs2CRD3Tag                     = 0x70736433L,  /* 'psd3' */
  319.     icSigPs2CSATag                      = 0x70733273L,  /* 'ps2s' */
  320.     icSigPs2RenderingIntentTag          = 0x70733269L,  /* 'ps2i' */
  321.     icSigRedColorantTag                 = 0x7258595AL,  /* 'rXYZ' */
  322.     icSigRedTRCTag                      = 0x72545243L,  /* 'rTRC' */
  323.     icSigScreeningDescTag               = 0x73637264L,  /* 'scrd' */
  324.     icSigScreeningTag                   = 0x7363726EL,  /* 'scrn' */
  325.     icSigTechnologyTag                  = 0x74656368L,  /* 'tech' */
  326.     icSigUcrBgTag                       = 0x62666420L,  /* 'bfd ' */
  327.     icSigViewingCondDescTag             = 0x76756564L,  /* 'vued' */
  328.     icSigViewingConditionsTag           = 0x76696577L,  /* 'view' */
  329.     icMaxEnumTag                        = 0xFFFFFFFFL 
  330. } icTagSignature;
  331.  
  332. /* technology signature descriptions */
  333. typedef enum {
  334.     icSigDigitalCamera                  = 0x6463616DL,  /* 'dcam' */
  335.     icSigFilmScanner                    = 0x6673636EL,  /* 'fscn' */
  336.     icSigReflectiveScanner              = 0x7273636EL,  /* 'rscn' */
  337.     icSigInkJetPrinter                  = 0x696A6574L,  /* 'ijet' */ 
  338.     icSigThermalWaxPrinter              = 0x74776178L,  /* 'twax' */
  339.     icSigElectrophotographicPrinter     = 0x6570686FL,  /* 'epho' */
  340.     icSigElectrostaticPrinter           = 0x65737461L,  /* 'esta' */
  341.     icSigDyeSublimationPrinter          = 0x64737562L,  /* 'dsub' */
  342.     icSigPhotographicPaperPrinter       = 0x7270686FL,  /* 'rpho' */
  343.     icSigFilmWriter                     = 0x6670726EL,  /* 'fprn' */
  344.     icSigVideoMonitor                   = 0x7669646DL,  /* 'vidm' */
  345.     icSigVideoCamera                    = 0x76696463L,  /* 'vidc' */
  346.     icSigProjectionTelevision           = 0x706A7476L,  /* 'pjtv' */
  347.     icSigCRTDisplay                     = 0x43525420L,  /* 'CRT ' */
  348.     icSigPMDisplay                      = 0x504D4420L,  /* 'PMD ' */
  349.     icSigAMDisplay                      = 0x414D4420L,  /* 'AMD ' */
  350.     icSigPhotoCD                        = 0x4B504344L,  /* 'KPCD' */
  351.     icSigPhotoImageSetter               = 0x696D6773L,  /* 'imgs' */
  352.     icSigGravure                        = 0x67726176L,  /* 'grav' */
  353.     icSigOffsetLithography              = 0x6F666673L,  /* 'offs' */
  354.     icSigSilkscreen                     = 0x73696C6BL,  /* 'silk' */
  355.     icSigFlexography                    = 0x666C6578L,  /* 'flex' */
  356.     icMaxEnumTechnology                 = 0xFFFFFFFFL   
  357. } icTechnologySignature;
  358.  
  359. /* type signatures */
  360. typedef enum {
  361.     icSigCurveType                      = 0x63757276L,  /* 'curv' */
  362.     icSigDataType                       = 0x64617461L,  /* 'data' */
  363.     icSigDateTimeType                   = 0x6474696DL,  /* 'dtim' */
  364.     icSigLut16Type                      = 0x6d667432L,  /* 'mft2' */
  365.     icSigLut8Type                       = 0x6d667431L,  /* 'mft1' */
  366.     icSigMeasurementType                = 0x6D656173L,  /* 'meas' */
  367.     icSigNamedColorType                 = 0x6E636f6CL,  /* 'ncol' 
  368.                                                          * OBSOLETE, use ncl2 */
  369.     icSigProfileSequenceDescType        = 0x70736571L,  /* 'pseq' */
  370.     icSigS15Fixed16ArrayType            = 0x73663332L,  /* 'sf32' */
  371.     icSigScreeningType                  = 0x7363726EL,  /* 'scrn' */
  372.     icSigSignatureType                  = 0x73696720L,  /* 'sig ' */
  373.     icSigTextType                       = 0x74657874L,  /* 'text' */
  374.     icSigTextDescriptionType            = 0x64657363L,  /* 'desc' */
  375.     icSigU16Fixed16ArrayType            = 0x75663332L,  /* 'uf32' */
  376.     icSigUcrBgType                      = 0x62666420L,  /* 'bfd ' */
  377.     icSigUInt16ArrayType                = 0x75693136L,  /* 'ui16' */
  378.     icSigUInt32ArrayType                = 0x75693332L,  /* 'ui32' */
  379.     icSigUInt64ArrayType                = 0x75693634L,  /* 'ui64' */
  380.     icSigUInt8ArrayType                 = 0x75693038L,  /* 'ui08' */
  381.     icSigViewingConditionsType          = 0x76696577L,  /* 'view' */
  382.     icSigXYZType                        = 0x58595A20L,  /* 'XYZ ' */
  383.     icSigXYZArrayType                   = 0x58595A20L,  /* 'XYZ ' */
  384.     icSigNamedColor2Type                = 0x6E636C32L,  /* 'ncl2' */
  385.     icSigCrdInfoType                    = 0x63726469L,  /* 'crdi' */
  386.     icMaxEnumType                       = 0xFFFFFFFFL   
  387. } icTagTypeSignature;
  388.  
  389. /* 
  390.  * Color Space Signatures
  391.  * Note that only icSigXYZData and icSigLabData are valid
  392.  * Profile Connection Spaces (PCSs)
  393.  */ 
  394. typedef enum {
  395.     icSigXYZData                        = 0x58595A20L,  /* 'XYZ ' */
  396.     icSigLabData                        = 0x4C616220L,  /* 'Lab ' */
  397.     icSigLuvData                        = 0x4C757620L,  /* 'Luv ' */
  398.     icSigYCbCrData                      = 0x59436272L,  /* 'YCbr' */
  399.     icSigYxyData                        = 0x59787920L,  /* 'Yxy ' */
  400.     icSigRgbData                        = 0x52474220L,  /* 'RGB ' */
  401.     icSigGrayData                       = 0x47524159L,  /* 'GRAY' */
  402.     icSigHsvData                        = 0x48535620L,  /* 'HSV ' */
  403.     icSigHlsData                        = 0x484C5320L,  /* 'HLS ' */
  404.     icSigCmykData                       = 0x434D594BL,  /* 'CMYK' */
  405.     icSigCmyData                        = 0x434D5920L,  /* 'CMY ' */
  406.     icSig2colorData                     = 0x32434C52L,  /* '2CLR' */
  407.     icSig3colorData                     = 0x33434C52L,  /* '3CLR' */
  408.     icSig4colorData                     = 0x34434C52L,  /* '4CLR' */
  409.     icSig5colorData                     = 0x35434C52L,  /* '5CLR' */
  410.     icSig6colorData                     = 0x36434C52L,  /* '6CLR' */
  411.     icSig7colorData                     = 0x37434C52L,  /* '7CLR' */
  412.     icSig8colorData                     = 0x38434C52L,  /* '8CLR' */
  413.     icSig9colorData                     = 0x39434C52L,  /* '9CLR' */
  414.     icSig10colorData                    = 0x41434C52L,  /* 'ACLR' */
  415.     icSig11colorData                    = 0x42434C52L,  /* 'BCLR' */
  416.     icSig12colorData                    = 0x43434C52L,  /* 'CCLR' */
  417.     icSig13colorData                    = 0x44434C52L,  /* 'DCLR' */
  418.     icSig14colorData                    = 0x45434C52L,  /* 'ECLR' */
  419.     icSig15colorData                    = 0x46434C52L,  /* 'FCLR' */
  420.     icMaxEnumData                       = 0xFFFFFFFFL   
  421. } icColorSpaceSignature;
  422.  
  423. /* profileClass enumerations */
  424. typedef enum {
  425.     icSigInputClass                     = 0x73636E72L,  /* 'scnr' */
  426.     icSigDisplayClass                   = 0x6D6E7472L,  /* 'mntr' */
  427.     icSigOutputClass                    = 0x70727472L,  /* 'prtr' */
  428.     icSigLinkClass                      = 0x6C696E6BL,  /* 'link' */
  429.     icSigAbstractClass                  = 0x61627374L,  /* 'abst' */
  430.     icSigColorSpaceClass                = 0x73706163L,  /* 'spac' */
  431.     icSigNamedColorClass                = 0x6e6d636cL,  /* 'nmcl' */
  432.     icMaxEnumClass                      = 0xFFFFFFFFL  
  433. } icProfileClassSignature;
  434.  
  435. /* Platform Signatures */
  436. typedef enum {
  437.     icSigMacintosh                      = 0x4150504CL,  /* 'APPL' */
  438.     icSigMicrosoft                      = 0x4D534654L,  /* 'MSFT' */
  439.     icSigSolaris                        = 0x53554E57L,  /* 'SUNW' */
  440.     icSigSGI                            = 0x53474920L,  /* 'SGI ' */
  441.     icSigTaligent                       = 0x54474E54L,  /* 'TGNT' */
  442.     icMaxEnumPlatform                   = 0xFFFFFFFFL  
  443. } icPlatformSignature;
  444.  
  445. /*------------------------------------------------------------------------*/
  446. /*
  447.  * Other enums
  448.  */
  449.  
  450. /* Measurement Flare, used in the measurmentType tag */
  451. typedef enum {
  452.     icFlare0                            = 0x00000000L,  /* 0% flare */
  453.     icFlare100                          = 0x00000001L,  /* 100% flare */
  454.     icMaxFlare                          = 0xFFFFFFFFL   
  455. } icMeasurementFlare;
  456.  
  457. /* Measurement Geometry, used in the measurmentType tag */
  458. typedef enum {
  459.     icGeometryUnknown                   = 0x00000000L,  /* Unknown */
  460.     icGeometry045or450                  = 0x00000001L,  /* 0/45, 45/0 */
  461.     icGeometry0dord0                    = 0x00000002L,  /* 0/d or d/0 */
  462.     icMaxGeometry                       = 0xFFFFFFFFL   
  463. } icMeasurementGeometry;
  464.  
  465. /* Rendering Intents, used in the profile header */
  466. typedef enum {
  467.     icPerceptual                        = 0,
  468.     icRelativeColorimetric              = 1,
  469.     icSaturation                        = 2,
  470.     icAbsoluteColorimetric              = 3,
  471.     icMaxEnumIntent                     = 0xFFFFFFFFL   
  472. } icRenderingIntent;
  473.  
  474. /* Different Spot Shapes currently defined, used for screeningType */
  475. typedef enum {
  476.     icSpotShapeUnknown                  = 0,
  477.     icSpotShapePrinterDefault           = 1,
  478.     icSpotShapeRound                    = 2,
  479.     icSpotShapeDiamond                  = 3,
  480.     icSpotShapeEllipse                  = 4,
  481.     icSpotShapeLine                     = 5,
  482.     icSpotShapeSquare                   = 6,
  483.     icSpotShapeCross                    = 7,
  484.     icMaxEnumSpot                       = 0xFFFFFFFFL   
  485. } icSpotShape;
  486.  
  487. /* Standard Observer, used in the measurmentType tag */
  488. typedef enum {
  489.     icStdObsUnknown                     = 0x00000000L,  /* Unknown */
  490.     icStdObs1931TwoDegrees              = 0x00000001L,  /* 2 deg */
  491.     icStdObs1964TenDegrees              = 0x00000002L,  /* 10 deg */
  492.     icMaxStdObs                         = 0xFFFFFFFFL   
  493. } icStandardObserver;
  494.  
  495. /* Pre-defined illuminants, used in measurement and viewing conditions type */
  496. typedef enum {
  497.     icIlluminantUnknown                 = 0x00000000L,
  498.     icIlluminantD50                     = 0x00000001L,
  499.     icIlluminantD65                     = 0x00000002L,
  500.     icIlluminantD93                     = 0x00000003L,
  501.     icIlluminantF2                      = 0x00000004L,
  502.     icIlluminantD55                     = 0x00000005L,
  503.     icIlluminantA                       = 0x00000006L,
  504.     icIlluminantEquiPowerE              = 0x00000007L,  
  505.     icIlluminantF8                      = 0x00000008L,  
  506.     icMaxEnumIluminant                  = 0xFFFFFFFFL   
  507. } icIlluminant;
  508.  
  509.  
  510. /*------------------------------------------------------------------------*/
  511. /*
  512.  * Arrays of numbers 
  513.  */
  514.  
  515. /* Int8 Array */
  516. typedef struct {
  517.     icInt8Number        data[icAny];    /* Variable array of values */
  518. } icInt8Array;
  519.  
  520. /* UInt8 Array */
  521. typedef struct {
  522.     icUInt8Number       data[icAny];    /* Variable array of values */
  523. } icUInt8Array;
  524.  
  525. /* uInt16 Array */
  526. typedef struct {
  527.     icUInt16Number      data[icAny];    /* Variable array of values */
  528. } icUInt16Array;
  529.  
  530. /* Int16 Array */
  531. typedef struct {
  532.     icInt16Number       data[icAny];    /* Variable array of values */
  533. } icInt16Array;
  534.  
  535. /* uInt32 Array */
  536. typedef struct {
  537.     icUInt32Number      data[icAny];    /* Variable array of values */
  538. } icUInt32Array;
  539.  
  540. /* Int32 Array */
  541. typedef struct {
  542.     icInt32Number       data[icAny];    /* Variable array of values */
  543. } icInt32Array;
  544.  
  545. /* UInt64 Array */
  546. typedef struct {
  547.     icUInt64Number      data[icAny];    /* Variable array of values */
  548. } icUInt64Array;
  549.  
  550. /* Int64 Array */
  551. typedef struct {
  552.     icInt64Number       data[icAny];    /* Variable array of values */
  553. } icInt64Array;
  554.     
  555. /* u16Fixed16 Array */
  556. typedef struct {
  557.     icU16Fixed16Number  data[icAny];    /* Variable array of values */
  558. } icU16Fixed16Array;
  559.  
  560. /* s15Fixed16 Array */
  561. typedef struct {
  562.     icS15Fixed16Number  data[icAny];    /* Variable array of values */
  563. } icS15Fixed16Array;
  564.  
  565. /* The base date time number */
  566. typedef struct {
  567.     icUInt16Number      year;
  568.     icUInt16Number      month;
  569.     icUInt16Number      day;
  570.     icUInt16Number      hours;
  571.     icUInt16Number      minutes;
  572.     icUInt16Number      seconds;
  573. } icDateTimeNumber;
  574.  
  575. /* XYZ Number  */
  576. typedef struct {
  577.     icS15Fixed16Number  X;
  578.     icS15Fixed16Number  Y;
  579.     icS15Fixed16Number  Z;
  580. } icXYZNumber;
  581.  
  582. /* XYZ Array */
  583. typedef struct {
  584.     icXYZNumber         data[icAny];    /* Variable array of XYZ numbers */
  585. } icXYZArray;
  586.  
  587. /* Curve */
  588. typedef struct {
  589.     icUInt32Number      count;          /* Number of entries */
  590.     icUInt16Number      data[icAny];    /* The actual table data, real
  591.                                          * number is determined by count
  592.                                          * Interpretation depends on how
  593.                                          * data is used with a given tag
  594.                                          */
  595. } icCurve;
  596.  
  597. /* Data */
  598. typedef struct {
  599.     icUInt32Number      dataFlag;       /* 0 = ascii, 1 = binary */
  600.     icInt8Number        data[icAny];    /* Data, size from tag */
  601. } icData;
  602.  
  603. /* lut16 */
  604. typedef struct {
  605.     icUInt8Number       inputChan;      /* Number of input channels */
  606.     icUInt8Number       outputChan;     /* Number of output channels */
  607.     icUInt8Number       clutPoints;     /* Number of grid points */
  608.     icInt8Number        pad;            /* Padding for byte alignment */
  609.     icS15Fixed16Number  e00;            /* e00 in the 3 * 3 */
  610.     icS15Fixed16Number  e01;            /* e01 in the 3 * 3 */    
  611.     icS15Fixed16Number  e02;            /* e02 in the 3 * 3 */
  612.     icS15Fixed16Number  e10;            /* e10 in the 3 * 3 */
  613.     icS15Fixed16Number  e11;            /* e11 in the 3 * 3 */    
  614.     icS15Fixed16Number  e12;            /* e12 in the 3 * 3 */ 
  615.     icS15Fixed16Number  e20;            /* e20 in the 3 * 3 */
  616.     icS15Fixed16Number  e21;            /* e21 in the 3 * 3 */    
  617.     icS15Fixed16Number  e22;            /* e22 in the 3 * 3 */
  618.     icUInt16Number      inputEnt;       /* Num of in-table entries */
  619.     icUInt16Number      outputEnt;      /* Num of out-table entries */
  620.     icUInt16Number      data[icAny];    /* Data follows see spec */
  621. /*
  622.  *  Data that follows is of this form
  623.  *
  624.  *  icUInt16Number      inputTable[inputChan][icAny];   * The in-table
  625.  *  icUInt16Number      clutTable[icAny];               * The clut 
  626.  *  icUInt16Number      outputTable[outputChan][icAny]; * The out-table
  627.  */
  628. } icLut16;
  629.  
  630. /* lut8, input & output tables are always 256 bytes in length */
  631. typedef struct {
  632.     icUInt8Number       inputChan;      /* Num of input channels */
  633.     icUInt8Number       outputChan;     /* Num of output channels */
  634.     icUInt8Number       clutPoints;     /* Num of grid points */
  635.     icInt8Number        pad;
  636.     icS15Fixed16Number  e00;            /* e00 in the 3 * 3 */
  637.     icS15Fixed16Number  e01;            /* e01 in the 3 * 3 */    
  638.     icS15Fixed16Number  e02;            /* e02 in the 3 * 3 */
  639.     icS15Fixed16Number  e10;            /* e10 in the 3 * 3 */
  640.     icS15Fixed16Number  e11;            /* e11 in the 3 * 3 */    
  641.     icS15Fixed16Number  e12;            /* e12 in the 3 * 3 */ 
  642.     icS15Fixed16Number  e20;            /* e20 in the 3 * 3 */
  643.     icS15Fixed16Number  e21;            /* e21 in the 3 * 3 */    
  644.     icS15Fixed16Number  e22;            /* e22 in the 3 * 3 */
  645.     icUInt8Number       data[icAny];    /* Data follows see spec */
  646. /*
  647.  *  Data that follows is of this form
  648.  *
  649.  *  icUInt8Number       inputTable[inputChan][256];     * The in-table
  650.  *  icUInt8Number       clutTable[icAny];               * The clut 
  651.  *  icUInt8Number       outputTable[outputChan][256];   * The out-table
  652.  */
  653. } icLut8;
  654.  
  655. /* Measurement Data */
  656. typedef struct {
  657.     icStandardObserver          stdObserver;    /* Standard observer */
  658.     icXYZNumber                 backing;        /* XYZ for backing */
  659.     icMeasurementGeometry       geometry;       /* Meas. geometry */
  660.     icMeasurementFlare          flare;          /* Measurement flare */
  661.     icIlluminant                illuminant;     /* Illuminant */
  662. } icMeasurement;
  663.  
  664. /* Named color */
  665.  
  666. /*
  667.  * icNamedColor2 takes the place of icNamedColor 
  668.  */
  669. typedef struct {
  670.     icUInt32Number      vendorFlag;     /* Bottom 16 bits for IC use */
  671.     icUInt32Number      count;          /* Count of named colors */
  672.     icUInt32Number      nDeviceCoords;  /* Num of device coordinates */
  673.     icInt8Number        prefix[32];     /* Prefix for each color name */
  674.     icInt8Number        suffix[32];     /* Suffix for each color name */
  675.     icInt8Number        data[icAny];    /* Named color data follows */
  676. /*
  677.  *  Data that follows is of this form
  678.  *
  679.  * icInt8Number         root1[32];              * Root name for 1st color
  680.  * icUInt16Number       pcsCoords1[icAny];      * PCS coords of 1st color
  681.  * icUInt16Number       deviceCoords1[icAny];   * Dev coords of 1st color
  682.  * icInt8Number         root2[32];              * Root name for 2nd color
  683.  * icUInt16Number       pcsCoords2[icAny];      * PCS coords of 2nd color
  684.  * icUInt16Number       deviceCoords2[icAny];   * Dev coords of 2nd color
  685.  *                      :
  686.  *                      :
  687.  * Repeat for name and PCS and device color coordinates up to (count-1)
  688.  * 
  689.  * NOTES:  
  690.  * PCS and device space can be determined from the header.
  691.  *
  692.  * PCS coordinates are icUInt16 numbers and are described in Annex A of 
  693.  * the ICC spec. Only 16 bit L*a*b* and XYZ are allowed. The number of 
  694.  * coordinates is consistent with the headers PCS.
  695.  *
  696.  * Device coordinates are icUInt16 numbers where 0x0000 represents
  697.  * the minimum value and 0xFFFF represents the maximum value. 
  698.  * If the nDeviceCoords value is 0 this field is not given.
  699.  */
  700. } icNamedColor2;
  701.  
  702. /* Profile sequence structure */
  703. typedef struct {
  704.     icSignature                 deviceMfg;      /* Dev Manufacturer */
  705.     icSignature                 deviceModel;    /* Dev Model */
  706.     icUInt64Number              attributes;     /* Dev attributes */
  707.     icTechnologySignature       technology;     /* Technology sig */
  708.     icInt8Number                data[icAny];    /* Desc text follows */
  709. /*
  710.  *  Data that follows is of this form, this is an icInt8Number
  711.  *  to avoid problems with a compiler generating  bad code as 
  712.  *  these arrays are variable in length.
  713.  *
  714.  * icTextDescription            deviceMfgDesc;  * Manufacturer text
  715.  * icTextDescription            modelDesc;      * Model text
  716.  */
  717. } icDescStruct;
  718.  
  719. /* Profile sequence description */
  720. typedef struct {
  721.     icUInt32Number      count;          /* Number of descriptions */
  722.     icUInt8Number       data[icAny];    /* Array of desc structs */
  723. } icProfileSequenceDesc;
  724.  
  725. /* textDescription */
  726. typedef struct {
  727.     icUInt32Number      count;          /* Description length */
  728.     icInt8Number        data[icAny];    /* Descriptions follow */
  729. /*
  730.  *  Data that follows is of this form
  731.  *
  732.  * icInt8Number         desc[count]     * NULL terminated ascii string
  733.  * icUInt32Number       ucLangCode;     * UniCode language code
  734.  * icUInt32Number       ucCount;        * UniCode description length
  735.  * icInt16Number        ucDesc[ucCount];* The UniCode description
  736.  * icUInt16Number       scCode;         * ScriptCode code
  737.  * icUInt8Number        scCount;        * ScriptCode count
  738.  * icInt8Number         scDesc[67];     * ScriptCode Description
  739.  */
  740. } icTextDescription;
  741.  
  742. /* Screening Data */
  743. typedef struct {
  744.     icS15Fixed16Number  frequency;      /* Frequency */
  745.     icS15Fixed16Number  angle;          /* Screen angle */
  746.     icSpotShape         spotShape;      /* Spot Shape encodings below */
  747. } icScreeningData;
  748.  
  749. typedef struct {
  750.     icUInt32Number      screeningFlag;  /* Screening flag */
  751.     icUInt32Number      channels;       /* Number of channels */
  752.     icScreeningData     data[icAny];    /* Array of screening data */
  753. } icScreening;
  754.  
  755. /* Text Data */
  756. typedef struct {
  757.     icInt8Number        data[icAny];    /* Variable array of chars */
  758. } icText;
  759.  
  760. /* Structure describing either a UCR or BG curve */
  761. typedef struct {
  762.     icUInt32Number      count;          /* Curve length */
  763.     icUInt16Number      curve[icAny];   /* The array of curve values */
  764. } icUcrBgCurve;
  765.  
  766. /* Under color removal, black generation */
  767. typedef struct {
  768.     icInt8Number        data[icAny];            /* The Ucr BG data */
  769. /*
  770.  *  Data that follows is of this form, this is a icInt8Number
  771.  *  to avoid problems with a compiler generating  bad code as 
  772.  *  these arrays are variable in length.
  773.  *
  774.  * icUcrBgCurve         ucr;            * Ucr curve
  775.  * icUcrBgCurve         bg;             * Bg curve
  776.  * icInt8Number         string;         * UcrBg description
  777.  */
  778. } icUcrBg;
  779.  
  780. /* viewingConditionsType */
  781. typedef struct {
  782.     icXYZNumber         illuminant;     /* In candelas per sq. meter */
  783.     icXYZNumber         surround;       /* In candelas per sq. meter */
  784.     icIlluminant        stdIluminant;   /* See icIlluminant defines */
  785. } icViewingCondition;
  786.  
  787. /* CrdInfo type */
  788. typedef struct {
  789.     icUInt32Number      count;          /* Char count includes NULL */
  790.     icInt8Number        desc[icAny];    /* Null terminated string */
  791. } icCrdInfo;
  792.  
  793. /*------------------------------------------------------------------------*/
  794. /*
  795.  * Tag Type definitions
  796.  */
  797.  
  798. /*
  799.  * Many of the structures contain variable length arrays. This
  800.  * is represented by the use of the convention.
  801.  *
  802.  *      type    data[icAny];
  803.  */
  804.  
  805. /* The base part of each tag */
  806. typedef struct {
  807.     icTagTypeSignature  sig;            /* Signature */
  808.     icInt8Number        reserved[4];    /* Reserved, set to 0 */
  809. } icTagBase;
  810.  
  811. /* curveType */
  812. typedef struct {
  813.     icTagBase           base;           /* Signature, "curv" */
  814.     icCurve             curve;          /* The curve data */
  815. } icCurveType;
  816.  
  817. /* dataType */
  818. typedef struct {
  819.     icTagBase           base;           /* Signature, "data" */
  820.     icData              data;           /* The data structure */
  821. } icDataType;
  822.  
  823. /* dateTimeType */
  824. typedef struct {
  825.     icTagBase           base;           /* Signature, "dtim" */
  826.     icDateTimeNumber    date;           /* The date */
  827. } icDateTimeType;
  828.  
  829. /* lut16Type */
  830. typedef struct {
  831.     icTagBase           base;           /* Signature, "mft2" */
  832.     icLut16             lut;            /* Lut16 data */
  833. } icLut16Type;
  834.  
  835. /* lut8Type, input & output tables are always 256 bytes in length */
  836. typedef struct {
  837.     icTagBase           base;           /* Signature, "mft1" */
  838.     icLut8              lut;            /* Lut8 data */
  839. } icLut8Type;
  840.  
  841. /* Measurement Type */
  842. typedef struct {
  843.     icTagBase           base;           /* Signature, "meas" */
  844.     icMeasurement       measurement;    /* Measurement data */
  845. } icMeasurementType;
  846.  
  847. /* Named color type */
  848. /* icNamedColor2Type, replaces icNamedColorType */
  849. typedef struct {
  850.     icTagBase           base;           /* Signature, "ncl2" */
  851.     icNamedColor2       ncolor;         /* Named color data */
  852. } icNamedColor2Type;
  853.  
  854. /* Profile sequence description type */
  855. typedef struct {
  856.     icTagBase                   base;   /* Signature, "pseq" */
  857.     icProfileSequenceDesc       desc;   /* The seq description */
  858. } icProfileSequenceDescType;
  859.  
  860. /* textDescriptionType */
  861. typedef struct {
  862.     icTagBase                   base;   /* Signature, "desc" */
  863.     icTextDescription           desc;   /* The description */
  864. } icTextDescriptionType;
  865.  
  866. /* s15Fixed16Type */
  867. typedef struct {
  868.     icTagBase           base;           /* Signature, "sf32" */
  869.     icS15Fixed16Array   data;           /* Array of values */
  870. } icS15Fixed16ArrayType;
  871.  
  872. typedef struct {
  873.     icTagBase           base;           /* Signature, "scrn" */
  874.     icScreening         screen;         /* Screening structure */
  875. } icScreeningType;
  876.  
  877. /* sigType */
  878. typedef struct {
  879.     icTagBase           base;           /* Signature, "sig" */
  880.     icSignature         signature;      /* The signature data */
  881. } icSignatureType;
  882.  
  883. /* textType */
  884. typedef struct {
  885.     icTagBase           base;           /* Signature, "text" */
  886.     icText              data;           /* Variable array of chars */
  887. } icTextType;
  888.  
  889. /* u16Fixed16Type */
  890. typedef struct {
  891.     icTagBase           base;           /* Signature, "uf32" */
  892.     icU16Fixed16Array   data;           /* Variable array of values */
  893. } icU16Fixed16ArrayType;
  894.  
  895. /* Under color removal, black generation type */
  896. typedef struct {
  897.     icTagBase           base;           /* Signature, "bfd " */
  898.     icUcrBg             data;           /* ucrBg structure */
  899. } icUcrBgType;
  900.  
  901. /* uInt16Type */
  902. typedef struct {
  903.     icTagBase           base;           /* Signature, "ui16" */
  904.     icUInt16Array       data;           /* Variable array of values */
  905. } icUInt16ArrayType;
  906.  
  907. /* uInt32Type */
  908. typedef struct {
  909.     icTagBase           base;           /* Signature, "ui32" */
  910.     icUInt32Array       data;           /* Variable array of values */
  911. } icUInt32ArrayType;
  912.  
  913. /* uInt64Type */
  914. typedef struct {
  915.     icTagBase           base;           /* Signature, "ui64" */
  916.     icUInt64Array       data;           /* Variable array of values */
  917. } icUInt64ArrayType;
  918.     
  919. /* uInt8Type */
  920. typedef struct {
  921.     icTagBase           base;           /* Signature, "ui08" */
  922.     icUInt8Array        data;           /* Variable array of values */
  923. } icUInt8ArrayType;
  924.  
  925. /* viewingConditionsType */
  926. typedef struct {
  927.     icTagBase           base;           /* Signature, "view" */
  928.     icViewingCondition  view;           /* Viewing conditions */
  929. } icViewingConditionType;
  930.  
  931. /* XYZ Type */
  932. typedef struct {
  933.     icTagBase           base;           /* Signature, "XYZ" */
  934.     icXYZArray          data;           /* Variable array of XYZ nums */
  935. } icXYZType;
  936.  
  937. /* CRDInfoType where [0] is the CRD product name count and string and
  938.  * [1] -[5] are the rendering intents 0-4 counts and strings
  939.  */
  940. typedef struct {
  941.     icTagBase           base;           /* Signature, "crdi" */
  942.     icCrdInfo           info;           /* 5 sets of counts & strings */
  943. }icCrdInfoType;
  944.      /*   icCrdInfo       productName;     PS product count/string */
  945.      /*   icCrdInfo       CRDName0;        CRD name for intent 0 */ 
  946.      /*   icCrdInfo       CRDName1;        CRD name for intent 1 */ 
  947.      /*   icCrdInfo       CRDName2;        CRD name for intent 2 */ 
  948.      /*   icCrdInfo       CRDName3;        CRD name for intent 3 */
  949.     
  950. /*------------------------------------------------------------------------*/
  951.  
  952. /*
  953.  * Lists of tags, tags, profile header and profile structure
  954.  */
  955.  
  956. /* A tag */
  957. typedef struct {
  958.     icTagSignature      sig;            /* The tag signature */
  959.     icUInt32Number      offset;         /* Start of tag relative to 
  960.                                          * start of header, Spec 
  961.                                          * Clause 5 */
  962.     icUInt32Number      size;           /* Size in bytes */
  963. } icTag;
  964.  
  965. /* A Structure that may be used independently for a list of tags */
  966. typedef struct {
  967.     icUInt32Number      count;          /* Num tags in the profile */
  968.     icTag               tags[icAny];    /* Variable array of tags */
  969. } icTagList;
  970.  
  971. /* The Profile header */
  972. typedef struct {
  973.     icUInt32Number              size;           /* Prof size in bytes */
  974.     icSignature                 cmmId;          /* CMM for profile */
  975.     icUInt32Number              version;        /* Format version */
  976.     icProfileClassSignature     deviceClass;    /* Type of profile */
  977.     icColorSpaceSignature       colorSpace;     /* Clr space of data */
  978.     icColorSpaceSignature       pcs;            /* PCS, XYZ or Lab */
  979.     icDateTimeNumber            date;           /* Creation Date */
  980.     icSignature                 magic;          /* icMagicNumber */
  981.     icPlatformSignature         platform;       /* Primary Platform */
  982.     icUInt32Number              flags;          /* Various bits */
  983.     icSignature                 manufacturer;   /* Dev manufacturer */
  984.     icUInt32Number              model;          /* Dev model number */
  985.     icUInt64Number              attributes;     /* Device attributes */
  986.     icUInt32Number              renderingIntent;/* Rendering intent */
  987.     icXYZNumber                 illuminant;     /* Profile illuminant */
  988.     icSignature                 creator;        /* Profile creator */
  989.     icInt8Number                reserved[44];   /* Reserved */
  990. } icHeader;
  991.  
  992. /* 
  993.  * A profile, 
  994.  * we can't use icTagList here because its not at the end of the structure
  995.  */
  996. typedef struct {
  997.     icHeader            header;         /* The header */
  998.     icUInt32Number      count;          /* Num tags in the profile */
  999.     icInt8Number        data[icAny];    /* The tagTable and tagData */
  1000. /*
  1001.  * Data that follows is of the form
  1002.  *
  1003.  * icTag        tagTable[icAny];        * The tag table 
  1004.  * icInt8Number tagData[icAny];         * The tag data 
  1005.  */
  1006. } icProfile;           
  1007.  
  1008. /*------------------------------------------------------------------------*/
  1009. /* Obsolete entries */
  1010.  
  1011. /* icNamedColor was replaced with icNamedColor2 */
  1012. typedef struct {
  1013.     icUInt32Number      vendorFlag;     /* Bottom 16 bits for IC use */
  1014.     icUInt32Number      count;          /* Count of named colors */
  1015.     icInt8Number        data[icAny];    /* Named color data follows */
  1016. /*
  1017.  *  Data that follows is of this form
  1018.  *
  1019.  * icInt8Number         prefix[icAny];  * Prefix 
  1020.  * icInt8Number         suffix[icAny];  * Suffix 
  1021.  * icInt8Number         root1[icAny];   * Root name 
  1022.  * icInt8Number         coords1[icAny]; * Color coordinates 
  1023.  * icInt8Number         root2[icAny];   * Root name 
  1024.  * icInt8Number         coords2[icAny]; * Color coordinates 
  1025.  *                      :
  1026.  *                      :
  1027.  * Repeat for root name and color coordinates up to (count-1)
  1028.  */
  1029. } icNamedColor;
  1030.  
  1031. /* icNamedColorType was replaced by icNamedColor2Type */
  1032. typedef struct {
  1033.     icTagBase           base;           /* Signature, "ncol" */
  1034.     icNamedColor        ncolor;         /* Named color data */
  1035. } icNamedColorType;
  1036.  
  1037. #endif /* ICC_H */
  1038.